home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / var / lib / dpkg / info / sed.postinst < prev    next >
Encoding:
Text File  |  2008-05-03  |  288 b   |  17 lines

  1. #! /bin/sh -e
  2.  
  3. pkg=sed
  4.  
  5. case "$1" in
  6.   (configure|abort-remove|abort-deconfigure)
  7.     install-info --quiet --section "General commands" "General commands" \
  8.         /usr/share/info/sed.info
  9.     ;;
  10.   (abort-upgrade)
  11.     # Nothing to undo
  12.     ;;
  13.   (*)
  14.     echo "$0: Undocumented call: \"$@\"" >&2
  15.     exit 1;
  16. esac
  17.